home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / SDKs / Word Services SDK 1.0.6 / Word Services XCMD 1.0d2 / Library Source / Gripe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-05  |  228 b   |  10 lines  |  [TEXT/MMCC]

  1. #define USE_DEBUGGER    /* Undefine this to replace debugger calls with alerts */
  2.  
  3. #ifdef USE_DEBUGGER
  4. #define Gripe( foo )    DebugStr( foo )
  5. #else
  6. #define Gripe( foo )    RealGripe( foo )
  7. #endif
  8.  
  9. void RealGripe( StringPtr complaint );
  10.